php怎么echo变量,那我要获取连接ID怎么写?
1 constant是常量。
2 $id = $_GET['id']; 这个句子可以获取id。但是这个句子没有考虑空id的情况。就是说,没传id,就进来了。这时,这一句就会被报错,因为$_GET数组里没有一个以id作为键名称的键值对,你却强行引用它。
3 这么改搞定:
if(isset($_GET['id'])) {
$id = $_GET['id'];
} else {
$id = 0;
}
php用什么办法实现异步任务?
php实现异步任务的方法:
通用的异步执行文件 exec.phpsleep(8);
$data = "--type " . date("Y-m-d H:i:s") . " ---\n";
file_put_contents("../log.txt", $data, FILE_APPEND);
popen
通过 popen() 函数打开进程文件指针,从而能异步执行脚本文件。(只在linux下有效)pclose(popen("php exec.php &", 'r'));
echo 1;
怎么判断变量等于几?
比如你有这几个值:abc bcd def qwe asd 写成数组就是这样 $arr=array('abc','bcd','def','qwe','asd');//定义数组 $aa = in_array('abc',$arr);IN_aray()函数用于判断某个值是否在数组里! 如果是返回TRUE,否则返回FALSE;
if($aa){ echo "abc在数组中"; }else{ echo "abc不在数组中"; } 运行结果输出是“abc在数组中” LZ可以换几个值试试
如何实现PHP自动创建数据库?
你做好程序以后,把数据库导出成sql文件
1、连接数据库
2、读取这个sql文件里的sql语句,并执行
3、生成一个数据库连接参数的php文件
<?php
$con = mysql_connect("localhost","peter","abc123");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
if (mysql_query("CREATE DATABASE my_db",$con))
{
echo "Database created";
}
else
{
echo "Error creating database: " . mysql_error();
}
mysql_close($con);
?>
<?php
class ReadSql {
//数据库连接
protected $connect = null;
//数据库对象
protected $db = null;
//sql文件
public $sqlFile = "";
//sql语句集
public $sqlArr = array();
public function __construct($host, $user, $pw, $db_name) {
$host = empty($host) ? C("DB_HOST") : $host;
$user = empty($user) ? C("DB_USER") : $user;
$pw = empty($pw) ? C("DB_PWD") : $pw;
$db_name = empty($db_name) ? C("DB_NAME") : $db_name;
//连接数据库
$this->connect = mysql_connect($host, $user, $pw) or die("Could not connect: " . mysql_error());
$this->db = mysql_select_db($db_name, $this->connect) or die("Yon can not select the table:" . mysql_error());
}
//导入sql文件
public function Import($url) {
$this->sqlFile = file_get_contents($url);
if (!$this->sqlFile) {
exit("打开文件错误");
} else {
$this->GetSqlArr();
if ($this->Runsql()) {
return true;
}
}
}
//获取sql语句数组
public function GetSqlArr() {
//去除注释
$str = $this->sqlFile;
$str = preg_replace('/--.*/i', '', $str);
$str = preg_replace('/\/\*.*\*\/(\;)?/i', '', $str);
//去除空格 创建数组
$str = explode(";\n", $str);
foreach ($str as $v) {
$v = trim($v);
if (empty($v)) {
continue;
} else {
$this->sqlArr[] = $v;
}
}
}
//执行sql文件
public function RunSql() {
foreach ($this->sqlArr as $k => $v) {
if (!mysql_query($v)) {
exit("sql语句错误:第" . $k . "行" . mysql_error());
}
}
return true;
}
}
//范例:
header("Content-type:text/html;charset=utf-8");
$sql = new ReadSql("localhost", "root", "", "log_db");
$rst = $sql->Import("./log_db.sql");
if ($rst) {
echo "Success!";
}
?>
strrchar函数用法?
定义和用法
strrchr() 函数查找字符在指定字符串中从后面开始的第一次出现的位置,如果成功,则返回指向该位置的指针,如果失败,则返回 false。与之相对应的是strchr()函数,它查找字符串中首次出现指定字符的位置。
语法
strrchr(string,char)
参数 描述
string 必需。规定被搜索的字符串。
char 必需。规定要查找的字符。如果该参数是数字,则搜索匹配数字 ASCII 值的字符。 如果该参数多于一个字符,则以第一个字符为准。
例子
php echo strrchr("Hello world!",’world‘);?>
输出: world!
<?php echo strrchr("Hello world women!",'women');?>
输出: women!
C strrchr() 函数
实例:获取文件扩展名
<?php
echo strrchr( '123456789.xls' , '.' ); //程序从后面开始查找 '.' 的位置,并返回从 '.' 开始到字符串结尾的所有字符
程序的输出结果是:.xls
?>?。