php的empty(),trim(),strlen()方法

如果empty()函数的参数是非空或非零的值,则empty()返回FALSE。换句话说,""、0、"0"、NULL、array()、var$var;以及没有任何属性的对象都将被认为是空的,如果参数为空,则函数TRUE。空格不为空(一个空格的长度是1,两个为2...),因此使用empty()的话返回FALSE.

trim() 只去除字符串左边跟右边的空白  中间的不去
str_repace(" ","",$str)   去掉中间的空白。

strlen() 函数返回字符串的长度。

参数均写在括号内。

时间: 2024-10-27 12:41:19

php的empty(),trim(),strlen()方法的相关文章

empty(trim($str))报错原因

最近写程序的时候发现一个这样的问题,一个if判断如下: [php] if (!empty(trim($ch_url))) { ... } [/php] 执行程序报出如下错误: [code] Fatal error: Can't use function return value in write context in ... [/code] 调整为如下形式则不报错误 [php] $ch_url = trim($ch_url); if (!empty($ch_url)) { ... } [/php

Jquery empty() remove() detach() 方法的区别

方法简介: empty() This method removes not only child (and other descendant) elements, but also any text within the set of matched elements. This is because, according to the DOM specification, any string of text within an element is considered a child no

[转]C++ string的trim, split方法

很多其他语言的libary都会有去除string类的首尾空格的库函数,但是标准C++的库却不提供这个功能.但是C++string也提供很强大的功能,实现trim这种功能也不难.下面是几种方法: 1.使用string的find_first_not_of,和find_last_not_of方法 [cpp] view plaincopy /* Filename : StringTrim1.cpp Compiler : Visual C++ 8.0 Description : Demo how to t

jquery的empty()和remove()方法

jquery之empty()与remove()区别 要用到移除指定元素的时候,发现empty()与remove([expr])都可以用来实现.可仔细观察效果的话就可以发现.empty()是只移除了 指定元素中的所有子节点,拿$("p").empty()来说,他只是把<p>dsfsd</p>中的文本给移除了,而留下 了<p></p>,仍保留其在dom中所占的位置.remove([expr])则是把其从dom中删除,而不会保留其所占的位置.例

Ubuntu 下解决【no crontab for root - using an empty one】方法

错误提示图如下: 解决方法: 1.使用root用户登陆系统: 2.在命令行提示符下: #select-editor  输入数字:3   回车 如图所示: 3.上述方法执行完毕后就可以使用crontab -e命令添加定时任务了:

札记__ADT:URL,Lua:strlen方法

01,Android ADT 在线更新的URL: https://dl-ssl.google.com/android/eclipse/ 02,Lua中字符串长度的判断可以使用   # local str = "abcabc" print(#str) --6 print(#"abcabc") --6 14-10-14

jQuery中删除节点方法remove()、detach()、empty()分析

jQuery中提供了三种删除节点的方法:remove().detach().empty(),本文详细分析这三种方法. 最容易区分的是empty(),该方法严格上属于“清空节点”,即删除其子节点,自身并不会删除.举个栗子: 1 <!doctype html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>remove和detach对

JS trim()方法使用

JS trim()方法使用上有浏览器限制: 1.直接使用 string.trim() 浏览器版本限制:JavaScript Version 1.8  2.间接使用<即自己使用正则构造类trim的方法> function myTrim(x) { return x.replace(/^\s+|\s+$/gm,''); } function myFunction() { var str = myTrim(" Hello World! "); alert(str); } 参考资料:

php empty 错误

[错误详情]:Fatal error: Can't use function return value in write context in -- [错误经过]:  来看这么一段程序 [php]  view plain copy print ? $value = $_POST['username']; if (empty(trim($value))){ echoError('请输入用户名!'); } 乍一看上去很简单,没什么问题,可经过异常排查后确定就是这一小段程序出现了上面的Fatal er