<?php class DBDA { public $host = "localhost"; public $uid = "root"; public $pwd = "20982239"; //执行sql语句,返回相应的结果函数 //$sql是要执行的sql语句 //$type是sql语句的类型,0代表增删改,1代表查询 //$db代表要操作的数据库 public function Query($sql,$type=1,$db="…
强调:eval()函数功能虽然强大,但是也很危险,这个方法需要慎重使用. 利用python中的内置函数 eval() ,函数说明: def eval(*args, **kwargs): # real signature unknown """ Evaluate the given source in the context of globals and locals. The source may be a string representing a Python expre…
<script> var title = "this is title"; console.log(title.substr(0,5)); //字符串为什么可以调用成员(惯例是对象才能调用成员) //答:表面是字符串调用成员,其实在浏览器javascript解释引擎内部要做具体处理 引擎根据“字符串”生成一个“临时对象”,是临时对象调用成员并返回结果 之后该“临时对象”被销毁 </script>…