摘要: PHP 5 String 函数 http://www.w3school.com.cn/php/php_ref_string.asp 阅读全文
posted @ 2017-10-15 13:49 ksy_c 阅读(93) 评论(0) 推荐(0)
摘要: $num = 123.5; # 向上取整echo ceil($num);echo '<br>';# 向下取整echo floor($num);echo '<br>';# 四舍五入echo round($num);echo '<br>';# 随机数echo mt_rand(1000 , 9999); 阅读全文
posted @ 2017-10-15 13:41 ksy_c 阅读(124) 评论(0) 推荐(0)
摘要: $array = array('name' =>'ksy_c' , 'sex'=>'女','age'=>18); //关联数组 $array=array('苹果','橙子','葡萄'); //索引数组(下标都是数字) $array=['fruit1'=>'苹果','橙子','葡萄']; //5.4以 阅读全文
posted @ 2017-10-15 12:37 ksy_c 阅读(254) 评论(0) 推荐(0)
摘要: a. apache的核心配置文件 httpd.conf 在配置文件492行附近找到 下面两行代码: # Virtual hosts #Include conf/extra/httpd-vhosts.conf 修改成[去掉第二行的左边 # ] # Virtual hosts Include con/e 阅读全文
posted @ 2017-10-15 09:41 ksy_c 阅读(195) 评论(0) 推荐(0)