downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

md5_file> <localeconv
Last updated: Fri, 24 Jul 2009

view this page in

ltrim

(PHP 4, PHP 5)

ltrim문자열 시작에서 공백(이나 다른 문자)를 제거

설명

string ltrim ( string $str [, string $charlist ] )

문자열 시작에서 공백(이나 다른 문자)를 제거합니다.

인수

str

입력 문자열.

charlist

charlist 인수로 제거하길 원하는 문자를 지정할 수 있습니다. 간단히 제거하길 원하는 모든 문자를 나열합니다. ..으로 문자 범위를 지정할 수 있습니다.

반환값

str 시작에서 공백을 제거한 문자열을 반환합니다. 두번째 인수가 없으면, ltrim()은 다음 문자를 제거합니다:

  • " " (ASCII 32 (0x20)), 보통의 공백.
  • "\t" (ASCII 9 (0x09)), 탭.
  • "\n" (ASCII 10 (0x0A)), 새 줄(줄바꿈).
  • "\r" (ASCII 13 (0x0D)), 캐리지 리턴.
  • "\0" (ASCII 0 (0x00)), NUL 바이트.
  • "\x0B" (ASCII 11 (0x0B)), 수직 탭.

변경점

버전 설명
4.1.0 charlist 인수 추가.

예제

Example #1 ltrim() 용례

<?php

$text 
"\t\tThese are a few words :) ...  ";
$binary "\x09Example string\x0A";
$hello  "Hello World";
var_dump($text$binary$hello);

print 
"\n";


$trimmed ltrim($text);
var_dump($trimmed);

$trimmed ltrim($text" \t.");
var_dump($trimmed);

$trimmed ltrim($hello"Hdle");
var_dump($trimmed);

// $binary 시작에서 ASCII 제어 문자를 제거
// (0부터 31까지)
$clean ltrim($binary"\x00..\x1F");
var_dump($clean);

?>

위 예제의 출력:

string(32) "        These are a few words :) ...  "
string(16) "    Example string
"
string(11) "Hello World"

string(30) "These are a few words :) ...  "
string(30) "These are a few words :) ...  "
string(7) "o World"
string(15) "Example string
"

참고

  • trim() - Strip whitespace (or other characters) from the beginning and end of a string
  • rtrim() - 문자열 마지막의 공백(이나 다른 문자)을 제거



add a note add a note User Contributed Notes
ltrim
Usamah M dot Ali (usamah1228 at gmail dot com)
04-Feb-2008 10:42
For those who use right-to-left languages such as Arabic, Hebrew, etc., it's worth mentioning that ltrim() (which stands for left trim) & rtrim() (which stands for right trim) DO NOT work contextually. The nomenclature is rather semantically incorrect. So in an RTL script, ltrim() will trim text from the right direction (i.e. beginning of RTL strings), and rtrim() will trim text from the left direction (i.e. end of RTL strings).
John Sherwood
06-Aug-2006 07:13
To remove leading/trailing zeroes (example: "0123.4560"), doing a += 0 is easier than trim tricks.

md5_file> <localeconv
Last updated: Fri, 24 Jul 2009
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites