问题标签 [file-put-contents]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
2 回答
8657 浏览

php - 如何使用 file_get_contents() 加载远程文件?

现在有点抓挠我的头。
我正在尝试从远程 url 获取文件。我可以从本地文件中保存内容,但不能从远程文件中保存。

这有效:

这不会:

奇怪的是,我的其他脚本在第一次尝试时运行良好,但现在没有人可以访问远程 url。
我最近开始在 Heart Internet 上托管我的新 php 文件。我在其他服务器上有类似的脚本,完全没有问题。

这是我得到的错误:

警告:file_get_contents() [function.file-get-contents]: php_network_getaddresses: getaddrinfo failed: Name or service not known in /home/sites/mydomain/myfile.php on line 5`

警告:file_get_contents(http://www.domain.com/xmlapi/search.aspx?query=places&lid=38)[function.file-get-contents]:无法打开流:php_network_getaddresses:getaddrinfo 失败:名称或服务不是在第 5 行的 /home/sites/mydomain/public_html/myfile.php 中已知

allow_url_fopen被设定为On

不同的域

0 投票
2 回答
190 浏览

php - 使用 PHP 编辑 PHP 文件,但没有重复的内容

所以我一直在尝试在创建 PHP 文件后对其进行编辑,但我似乎一直遇到问题。

这是我的源代码。

它创建文件。这不是权限问题,它也可以编辑文件,但是每次我进行字符串替换时它都会生成 php,所以 id 我 str_replace 5 次然后文件中有 5 个代码块实例。我做错了什么?

更新我的代码。这次我做错了什么?

0 投票
2 回答
812 浏览

javascript - 如何根据php中的按钮操作传递点击次数

我们正在开发网站。我们有按钮。在按钮操作中,我们放置了 PDF 文件下载。工作正常。但我们需要如何计算从我的网站下载我的 PDF 文件。

我们尝试过这样,但我们没有得到。

我们什么都没有。我们是新手,PHP请指导我们。

0 投票
3 回答
2242 浏览

php - Best way to check if a file exists before execute a file_put_contents function

As the title says I'm searching for the best way to check if a file exists before execute a file_put_contents function. It's better to add a number after the filename? or It's better to generate the filename with a date/time after the name? In my case, what would you do?

Here's my working code,

}

0 投票
4 回答
1805 浏览

php - file_put_contents():connect()失败:AWS服务器中的权限被拒绝

我尝试将一个文件从我的远程服务器放到另一个远程服务器,同时我从我的本地主机中提取这个代码它的工作文件,然后我将一个文件从我的 ocal pc 传输到服务器。但是当我尝试从我的 AWS 服务器执行此代码时,它不会传输任何文件,当我检查我的错误日志文件时,它会给出

我的测试 文件夹权限是777 现在该怎么办,是否有任何服务器配置错过了。

0 投票
0 回答
221 浏览

php - 使用 PHP/MYSQL 更新 JSON 文件 - 限制大小问题

下面的代码运行良好,直到我在 Json 数组中存储了大约 25000-30000 个对象。然后文件不再更新。
有人知道可能是什么问题吗?


在内存限制的情况下,我更改了 php.ini 的配置。但什么都没有......
我在另一台服务器上试过,但同样的问题。有人有想法吗?

谢谢

0 投票
2 回答
2685 浏览

php - PHP:带有 Unicode 文件名的 file_put_contents()

我想使用 PHP 的 file_put_contents() 函数将一些数据保存在文件名中包含 unicode 字符的文件中(如中文、西里尔文、阿拉伯文......)。我不想用 urlencode() 之类的东西单独对它们进行编码,因为如果文件名仅包含非拉丁字符,人类将无法读取它们。3 个最大的操作系统 Windows、MacOS / OS X 和 Linux 在文件名中支持 UTF-8 或 UTF-16 字符,并且可以毫无问题地显示它们,但似乎并不像调用这样的东西那么容易:

在 Windows 7(德语本地化)上,文件存储为:

PHP 文件本身以 UTF-8 编码保存。在这3个系统上是否有统一的方法来保存文件名中带有unicode的文件?

0 投票
1 回答
84 浏览

php - php - 读取特定地址的内容网页

0 投票
1 回答
150 浏览

php - 从网页获取文件并使用 file_put_contents 保存

我尝试制作一个脚本,该脚本可以将具有名称模式的网页中的所有文件保存到服务器。

如果我只使用id数字等 1-20 或 50 - 60 等,则脚本可以完美运行。但是当我在前面有一个名字和空白时,它似乎不起作用。它只保存 1 个文件并停止。

0 投票
2 回答
1285 浏览

php - PHP: file_put_contents and writing to multiple files in a for loop not working

For some background I have a bit of code that I am using to generate html files that contain a link to a unique code. Ultimately this ends up on a USB drive thats distributed to customers. This is done in batch so i can create as many custom files with code as needed.

What happens is only one file is generated in that folder, but its name is always the last element in the array, the other files don't get generated, it seems like the files getting overwritten even though $code is different on each iteration.

I tried the following code as well with same results.

Any ideas?