我有内部使用的小型 php 应用程序,通常我当然使用 mySql 数据库,但在这种情况下,我有文本数据库,例如 dir 结构:
publichtml/mydatabase
publichtml/mydatabase/orders
1.txt
2.txt
publichtml/mydatabase/invoice
1.txt
2.txt
publichtml/mydatabase/user
users.txt
我如何保护这个数据库并只允许使用这个函数从我的 php 源访问:
$dat_example = substr(file_get_contents("mydatabase/orders/1.txt"),0,100000000000);
谢谢