-
eval()内置函数:将字符串语句转换为php语句执行查看全部
-
eval() 函数可将字符串转换为代码执行,并返回一个或多个值。 如果eval函数在执行时遇到错误,则抛出异常给调用者. 类似的函数是loadcode ,loadcode并不立即执行代码,而是返回一个函数对象. 并且loadcode支持路径参数,eval并不支持. eval并不支持代码中的return语句,而是将代码作为表达式直接计算出结果. 例: var d = eval("({name:'chentong'})") alert(d.name);查看全部
-
mvc查看全部
-
smarty五配置两方法查看全部
-
<?php require_once('../Smarty/Smarty.class.php'); //实例化 $smarty = new smarty; //配置Smarty $smarty->left_delimiter = "{"; //左定界符 $smarty->right_delimiter = "}"; //右定界符 $smarty->template_dir = "tpl"; //模板目录 $smarty->compile_dir = "template_c"; //模板编译生成目录 $smarty->cache_dir = "cache"; //缓存目录 /*Smarty的缓存机制通常不开启*/ //$smarty->caching = true; //开启缓存 //$smarty->cache_lifetime = 120; //缓存时间 $smarty->assign('title','Hello Smarty'); //设置title变量,赋值Hello Smarty $smarty->display('sayhello.tpl'); //在sayhello.tpl模板中展示 ?>查看全部
-
MVC步骤查看全部
-
控制器文件命名形式查看全部
-
MVC工作模式查看全部
-
微型框架组织结构查看全部
-
工作流程查看全部
-
关系视图查看全部
-
过程化设计流程查看全部
-
function M() {}查看全部
-
eval();查看全部
-
//var_dump(gd_info());//取得当前安装的 GD 库的信息 $imgInfo = getimagesize('img.jpg');// getimagesize取图片信息 echo $imgInfo[0];//宽 echo $imgInfo[1];//高 echo $imgInfo[2];//类型 2(1 = GIF,2 = JPG,3 = PNG,4 = SWF,5 = PSD,6 = BMP,7 = TIFF(intel byte order),8 = TIFF(motorola byte order),9 = JPC,10 = JP2,11 = JPX,12 = JB2,13 = SWC,14 = IFF,15 = WBMP,16 = XBM) echo $imgInfo[3];//属性 width="728" height="90" echo $imgInfo['bits'];//索引 bits 给出的是图像的每种颜色的位数,二进制格式 echo $imgInfo['channels'];//索引 channels 给出的是图像的通道值,RGB 图像默认是 3 echo $imgInfo['mime'];//索引 mime 给出的是图像的 MIME 信息,此信息可以用来在 HTTP Content-type 头信息中发送正确的信息,如: header("Content-type: image/jpeg"); //getimagesize可以用来判断是不是真的图片 if(@getimagesize('jia.png')) { echo "是图片"; } else { echo "不是图片"; } echo '<hr />'; //不可用,应该是版本要大于5.4 //$imgStr = file_get_contents("img.jpg"); //$imgStrIndo = getimagesizefromstring($imgStr); //var_dump($imgStrIndo); $arr = array('item-1','item-2'); list($a,$b) = $arr; echo $a; echo $b;查看全部
举报
0/150
提交
取消