We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3a9d7a commit 07e97aeCopy full SHA for 07e97ae
1 file changed
README.md
@@ -9,13 +9,13 @@ IPIP.net官方支持的解析datx格式的php代码
9
<code>
10
require_once __DIR__ . '/vendor/autoload.php';
11
12
-$bs = new ipip\datx\City("c:/work/tiantexin/17mon/mydata4vipday4.datx");
+$bs = new ipip\datx\City("/path/to/mydata4vipday4.datx");
13
var_export($bs->find("223.220.233.0"));
14
15
-$bs = new ipip\datx\District("c:/work/tiantexin/framework/library/ip/quxian.datx");
+$bs = new ipip\datx\District("/path/to/quxian.datx");
16
var_export($bs->find("1.12.29.0"));
17
18
-$bs = new ipip\datx\BaseStation("c:/work/tiantexin/17mon/station_ip.datx");
+$bs = new ipip\datx\BaseStation("/path/to/station_ip.datx");
19
20
</code>
21
</pre>
0 commit comments