摘要: 把htdocs 目录软连接到根目录 ln -s /Applications/MAMP/htdocs /Users/yanruicheng 上述命令成功后,ls 查看,然后cd 便可以进入这个目录了。 阅读全文
posted @ 2018-12-05 22:50 yahn~ 阅读(21368) 评论(1) 推荐(1)
摘要: <?php class AppConst{ const user=11; public static $arr = [ 'name'=>'张三', 'title'=>'测试', ];}$a = AppConst::user;// var_dump($a);$b = AppConst::$arr;va 阅读全文
posted @ 2018-12-05 15:37 yahn~ 阅读(127) 评论(0) 推荐(0)
摘要: 调用代码如下: <?php require 'simple_html_dom.php';$str = file_get_contents('11.html');$dom = str_get_html($str);//显示界面echo $dom;//这里打印出来是文件源码echo highlight_ 阅读全文
posted @ 2018-12-05 14:22 yahn~ 阅读(658) 评论(0) 推荐(0)