转自:http://benchmarks.ro/2011/02/str_replace-vs-preg_replace/ 事实证明str_replace确实比preg_replace快. If you find yourself handling strings and replacing sub-strings within them you want to make sure that you are using the fastest way possible to do it.In or…
需求:在 a 网站的后台添加一片文章,需要同步到 b 网站(两个网站数据库在同一台服务器). 思路是添加文章时,除了往 b 网站的数据库中添加数据外,再往 a 网站的数据库中添加数据. a 添加文章的控制器,加上往 b 网站数据库中插入数据的程序: //把文章同时更新到crm项目:数据库-crm,表-article_info $aObj_c = M('article_info', 'crm_', 'DB_CRM'); $data['title'] = $_POST['etitle']; $dat…