gpt4 book ai didi

php - 为什么当我在 Ubuntu 中运行一个 .php 脚本时它只是回应脚本本身?

转载 作者:IT王子 更新时间:2023-10-29 00:27:19 26 4
gpt4 key购买 nike

我必须解码我命名为 cache.log 的一个 Chrome 缓存文件的二进制内容数据。我尝试解码它的方式是使用我在此处找到的 php 脚本

http://www.frozax.com/blog/2011/05/recover-file-google-chrome-cache-gzipped/

我已经用下面的命令安装了 php

sudo apt-get install php5 libapache2-mod-php5
sudo apt-get install php5-cgi

当我尝试运行 index1.php 脚本时,我在终端中得到以下信息

s3z@s3z-laptop:~/Desktop$ php index1.php 
PHP Deprecated: Comments starting with '#' are deprecated in /etc/php5/cli/conf.d/mcrypt.ini on line 1 in Unknown on line 0
// cache.log is a copy of chrome cache page with only the file content section
$cacheString = file_get_contents("cache.log");
$matches = array();
preg_match_all('/\s[0-9a-f]{2}\s/', $cacheString, $matches);
$f = fopen("t.bin","wb");
foreach ($matches[0] as $match)
{
fwrite($f,chr(hexdec($match)));
}
fclose($f);

ob_start();
readgzfile("t.bin");
$decoded_data=ob_get_clean();
echo $decoded_data;

如您所见,它所做的只是回显脚本。

我如何实际运行脚本?

最佳答案

看起来代码没有被包裹在:

<?php 

?>

如果没有,它只会回显而不是执行。这是因为 PHP 允许您在同一个文件中混合使用服务器脚本和 HTML。

<html>
<head><title></title></head>
<body>
<?php
//Inside the php block so it gets executed and prints 'Hello World'
echo "Hello, World!";
?>
<!--Outside the php block so it just gets echoed and prints 'echo "Hello, World!";' -->
echo "Hello, World!";
</body>
</html>

关于php - 为什么当我在 Ubuntu 中运行一个 .php 脚本时它只是回应脚本本身?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7582894/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com