我正在尝试在php中创建一个函数,目的是输出一个用引号“”括起来的URL。 我正在连接一个现有的URL和一个变量,但是php在连接之前在第一个字符串的末尾添加了一个额外的空格。 故障排除: 我已经尝试了str_replace()和rtrim(),但没有成功。 我尝试了Why does fgets adds a space at the end of string?上的指令,它确实生成了最后一个空格,如下所示 [0a]
[22] " 我仍然无法用提出的函数来解决这个问题。最终目标是获得.../data.txt和"之间没有空格的URL 以下是添加了故障排除代码的函数: <?
我正在使用此脚本生成一个与qmail定期更改的电子邮件地址。
#!/bin/bash
##### change these settings #####
qmailpath="/your/path/to/.qmail-"
wwwpath="/your/path/to/html/tempmail"
host="@my.host"
prefix="temp-"
length="16"
##### do not change the following #####
oldmail="$qmailpath&
我有一个简单的PHP循环,它在我的训练器表中的一个列上迭代。
它得到的数据是他们的名字和姓氏。当迭代中没有结果时,我试图删除字符串中的结束逗号,但它似乎不起作用。
// Get the trainers
foreach ($data->trainers as $trainers) {
$trainer .= (string)$trainers->trainer->trainerFirst. ' ' . (string)$trainers->trainer->trainerLast.',';
}
// Trim the trail