新随笔  :: 联系 :: 订阅 订阅  :: 管理

2013年1月31日

摘要: PHP5.3或之前版本可以去pecl(http://pecl.php.net)下载xhprof扩展安装。但pecl上的版本不支持PHP5.4可以到github上的xhprof库中下载:https://github.com/facebook/xhprof下载后进行解压安装1 cd xhprof-master/extension/2 phpize3 ./configure --enable-xhprof4 make5 sudo make install更改php.ini1 [xhprof]2 extension=xhprof.so3 xhprof.output_dir="/documen 阅读全文

posted @ 2013-01-31 20:50 张贺 阅读(4801) 评论(0) 推荐(0)

摘要: 1 <?php 2 require_once 'custom/modules/Documents/views/view.edit.php'; 3 require_once 'modules/Documents/Document.php'; 4 /** 5 * Test Class 6 */ 7 class CustomDocumentsViewEditTest extends Sugar_PHPUnit_Framework_TestCase 8 { 9 public function provider()10 {11 return array(12 ... 阅读全文

posted @ 2013-01-31 16:51 张贺 阅读(1136) 评论(0) 推荐(0)