$type = 'mysql'; $host = '127.0.0.1'; //linux&n...
246
<?php //文件内容函数练习代码 $file = fopen('text.txt','rb+'); //fgetc从文件中读取一个字符 e...
229
<?phpnamespace app\admins\controller;use think\Controller;use Util\SysDb;class Setting extends Ba...
287
<?phpnamespace app\admins\controller;use think\Controller;use Util\SysDb;class Base extends Contr...
310
<?php /** *常见的数据类型渲染输出 */ session_start(); include __DIR__.'/config/config.p...
285
三:标题:省市区三级联动地址:http://localhost/demo/demo5/index.php传值: &nb...
280
<?php/** * Created by PhpStorm. * User: Administrator * Date: 2018/7/25 * Tim...
286
$arr = range(1,10);for ($i = 0;$i<count($arr);$i++){ echo $i.'<br>';}e...
271
function demo($ii){ for ($i=0;$i<$ii;$i++){ &...
333
<?phpnamespace app\admins\controller;use think\Controller;use Util\SysDb;class Setting extends Ba...
398
<?phpnamespace app\admins\controller;use think\Controller;use Util\SysDb;class Base extends Contr...
259
$res=0; for($i=0;$i<=100;$i++){ $res+=$i; } echo $res; echo "<hr/>"; $...
540
class DBcontent{ //将构造方法私有化:禁止从外部实例化类 private function __construct() {} //将克隆方法私有化:禁止从外部克隆该类的实例 pri...
304
<!DOCTYPE html> <html lang = "en"> <head> &nbs...
1177
块级作用域:变量在离开定义的块级代码后立即被回收。php中只有函数作用域(块级作用域是不存在的。如果声明的全局变量和局部变量/常量名称相同就出现问题, 需要理解全局变量,局部...
367