php函数

deldot()函数

  • deldot($str):从str字符串的尾部开始,从后向前删除点.,直到该字符串的末尾字符不是.为止。
function deldot($s){
	for($i = strlen($s)-1;$i>0;$i--){
		$c = substr($s,$i,1);
		if($i == strlen($s)-1 and $c != '.'){
			return $s;
		}

		if($c != '.'){
			return substr($s,0,$i+1);
		}
	}
}

php函数_第1张图片

in_array()函数

  • in_array(mixed $needle, array $haystack, bool $strict = false):
  1. $needle:为待搜索的值
  2. $haystack:被搜索的数组
  3. $strict:用于决定是否进行类型比较,默认是false,即搜索时,不考虑类型。
  4. in_array()函数:在数组haystack中,搜索needle值。若匹配成功,则返回true。若匹配失败,则返回false。

isset()函数

  • bool isset ( mixed $var [, mixed $… ] ):如果ver变量存在且不为NULL,则返回true。如果ver变量是NULL,则返回false。
  • 如果一次传入多个参数,那么 isset() 只有在全部参数都存在,且不为NULL时返回 true。
    php函数_第2张图片

file_exists()函数

  • file_exists($var):函数检查文件ver或目录ver是否存在。如果指定的文件或目录存在则返回 true,否则返回 false。
    php函数_第3张图片

move_uploaded_file() 函数

  • move_uploaded_file(file,newloc):上传的file文件移动到新位置newloc。
    如果成功该函数返回true ,如果失败则返回 false。

trim()函数

  • trim(string,charlist) :函数移除string字符串两侧的空白字符或其他预定义字符。
  • string :必需,规定要检查的字符串。
  • charlist:可选,规定从字符串中删除哪些字符。如果省略该参数,则移除字符为"\0"(NULL)、“\t”(制表符)、“\n”(换行)、“\x0B”(垂直制表符)、“\r”(回车)," "(空格)。
    php函数_第4张图片

strrchr()函数

  • strrchr(string,char) : 在string字符串中,查找char字符最后一次出现的位置,并返回从该位置到字符串结尾的所有字符。如果没有找到字符,则返回 FALSE。
    php函数_第5张图片

strtolower()函数

  • strtolower(string):把字符串中的大写转换为小写,并返回。
    php函数_第6张图片

str_ireplace()函数

  • str_ireplace(find,replace,string,count):
  • find:必需,规定要查找的值。
  • replace:必需,规定替换 find 中的值的值。
  • string: 必需,规定被搜索的字符串。
  • count: 可选,一个变量,对替换数进行计数。
  • 在string中,查找find变量,并且用replace变量替换。
    php函数_第7张图片

move_uploaded_file()函数

  • move_uploaded_file(file,newloc) :将file文件移动到新的位置newloc。

你可能感兴趣的:(php,android,开发语言)