//开始获取页面名称//结束
class="active“href="index.php"> Homeclass="active”href="login.php">Loginclass="active“>Faqclass="active”href="contact.php">Contact
!-- static menu here below --> Contact
投入:
$string = "a b c d e";
我在php中有一个字符串,我需要用非中断空间代码替换该字符串。
产出:
"a \xc2\xa0b c \xc2\xa0d \xc2\xa0\xc2\xa0e"
当两个空间出现“”时,单空间和第一个空格不允许替换为\xc2\xa0 ,输出为“\xc2\xa0",保留第一个空格,替换第二个空格。”当三个空格出现时, ",输出为“\xc2\xA0\xA0 ",保留第一个空间,替换第二个和第三个空间。输入字符串为<code>G 211<//code>。
任何想法
我正在使用php Querypath,我正在尝试从html字符串中删除html顶部和底部的所有空标签。例如:
<div> </div>
<div> </div>
<div>I want remove empty div tag on top and bottom</div>
<div> </div>
<div>other content</div>
&
我正在尝试在我的Debian上安装PHPDebian命令行工具,是这样描述的:
(1)下载php-src,我假设它在/tmp/php/src中。
(2)使dir /tmp/phar
(3)将保存为/tmp/php/ext/phar/Makefile。
(4) cd /tmp/php-src/ext/phar
(5)运行sudo make
现在,在第5步之后,我得到了一个错误:
:/tmp/php-src/ext/phar# make
Makefile:11: *** missing separator (did you mean TAB instead of 8 spaces?).
可以通过删除给定字符串或字符前后的空格(1个或更多空格)来更新行吗?我需要去掉特定字符(@)前后的所有空格,同时保持单元格中的其他空格不变。
示例:
'This is a simple @ example'
应更新为
'This is a simple@example'
同样:
'This is another @example'
应更新为
'This is another@example'
我可以使用PHP来完成这项工作,但是如果有一种方法可以在单个查询中完成这项工作,就会容易得多。
我有这样的php链接
echo "<h4><a href='$bname_d'>$bname_d</a></h4>'
如果$bname_d = Creativeartbd主机公司,则显示url
http://mysite.com/Creativeartbd host company (2 space in this url)
那么,如何用php/..htaccess代替这个空间呢?
目前,我使用了以下.htaccess规则
RewriteEngine On
RewriteCond %{REQUEST_FILENAM
如果字符串包含空格,则不会通过url传递给php页面。是否可以通过url传递带有空格的字符串?
url码
$message = $email_message.'<a href="http://www.example.co.uk/email_feedback/feedback_result.php?name='.$name.'&email_message='.$email_message.'">Click HERE to Activate</a>';