php

自己一些总结

用全局变量。

1
2
3
4
5
6
7
8
9
class MyClass {
public my_print() {
global 搜索$str;
print $str;
}
}
$str = 'Hello, World'.
$myclass = new MyClass();
$myclass->my_print();

1
2
3
4
5
include_once("config.php");
class WxPayConfig
{
const A = Config::A;
}
1
2
3
4
5
6
7
<?php
class Config{
const KEY = '111';
static $URL = "";
}
Config::$URL_GET_TOKEN = "http://127.0.0.1:8890/user/add?key=".Config::KEY;
?>

php实现返回上一页

1
echo"<script>alert('随便写点什么');history.go(-1);</script>";

failed to open stream

failed to open stream: No such file or directory

在require时加上dirname(FILE)

1
2
3
<?php
require_once(dirname(__FILE__)."/a.php"); //实际上调用的是本目录下的a.php
?>

参考

php的class中怎样引用外部的变量
PHP类中的静态方法使用实例
关于PHP对象实例化单个例子的方法
通过http post发送json数据
php与js相互调用
php json

文章目录
  1. 1. failed to open stream
  2. 2. 参考
|