¿õÀÌ´Ù      2004/02/20 (10:35:02)     2483   
   °¡ÀԽà ÀԷ¹ÞÀº »ý³âÀ¸·Î ¶ì¸¦ ±¸ºÐÇÏ°íÆÄ~ [2]
¿¢¼¿¿¡¼­´Â left, right ¶ó´Â ÇÔ¼ö°¡ À־

°¢ ¹æÇâÀ¸·ÎºÎÅÍ ¿øÇÏ´Â ¼ýÀÚ¸¸Å­ÀÇ ¹®ÀÚ¸¦ ¾ò¾î³¾ ¼ö°¡ ÀÖ½À´Ï´Ù.(midµµ ºñ½ÁÇϱ¸¿ä..)

¿ä·± ±â´ÉÀ» ÇÏ´Â php ÇÔ¼ö´Â ¾î¶²°Ô ÀÖ³ª¿ä?! -0-;;






Á» ´õ ÀÚ¼¼ÇÏ°Ô ¼³¸íÀ» µå¸®ÀÚ¸é..

Á¦·Îº¸µå¿¡¼­ °¡ÀԽà ÀԷ¹ÞÀº »ý³âÀ¸·Î

¶ì¸¦ ±¸ºÐÇؼ­ ¶ìº° ¿î¼¼¸¦ ¸µÅ©ÇÏ·Á°í Çϰŵç¿ä... ;;

°¢ »ý³âÀ» 12·Î ³ª´©¸é... ³ª¸ÓÁö? ¸ò?(-_- ÇÁ·Î±×·¥¹ÖÀº ¼öÇÐÀ» ÀßÇؾßÇÑ´Ù´õ´Ï.. ;;)

¾ÏÆ° °è»ê±â·Î µÎµå·Á¼­ ³ª¿Â ¼ýÀÚ°¡ ¼Ò¼öÁ¡ ÀÌÇϺÎÅÍ µ¿ÀÏÇÏ°Ô ³ª¿À´õ±º¿ä..

±×·¡¼­ Áұ⸸ ºñ±³Çؼ­ ºÐ·ù¸¦ ÇÏ·Á°í Çϴµ¥...

¾î¶»°Ô ÇÏ¸é µÉ±î¿ä?! ºÎŹµå¸±²²¿ä.. (__)
writer ip : 220.71.87.213    


211.111.3.25
2004/02/20 (10:38:27)
substr() returns the portion of string specified by the start and length parameters. If start is non-negative, the returned string will start at the start'th position in string, counting from zero. For instance, in the string 'abcdef', the character at position 0 is 'a', the character at position 2 is 'c', and so forth. Example 1. Basic substr() usage <?php $rest = substr("abcdef", 1);    // returns "bcdef" $rest = substr("abcdef", 1, 3); // returns "bcd" $rest = substr("abcdef", 0, 4); // returns "abcd" $rest = substr("abcdef", 0, 8); // returns "abcdef" // Accessing via curly braces is another option $string = 'abcdef'; echo $string{0};                // returns a echo $string{3};                // returns d ?>   If start is negative, the returned string will start at the start'th character from the end of string. Example 2. Using a negative start <?php $rest = substr("abcdef", -1);    // returns "f" $rest = substr("abcdef", -2);    // returns "ef" $rest = substr("abcdef", -3, 1); // returns "d" ?>  

modify 2004/02/20 (10:38:41)
¿õÀÌ´Ù

203.241.146.6
2004/02/20 (11:35:41)
¿ª½Ã ´äº¯ÀÌ ±²ÀåÈ÷ ºü¸£³×¿ë.. ^^ °¨»çÇÕ´Ï´Ù... (__)

      

       

336 ¾Æ·¡ Áú¹®Àܵ¥ Ãß°¡Áú¹®ÀÌ¿¹¿ä [1] Ÿ¸£Å×¼Ò½º 01/13 2395
337 ¼¼ÆÃÀÌ Áö¿øµÇÁö ¾Ê´Â µµ¸ÞÀÎ [1] À念½Ä 01/13 2253
338 À¥È£½ºÆà ½Åû°Ç [1] °æÁ¦ÇÐ 01/13 3
339 ÀߵǴٰ¡ [1] Free Willy 01/14 2463
340 ÀÌÄÚ³ë¹Ì¿¡¼­ ½Ç¹ö·Î ¹Ù²å´Âµ¥.. [1] Ÿ¸£Å×¼Ò½º 01/14 1
341 °èÁ¤ ¼Â¾÷ ¿Ï·áµÇ¾ú´ÂÁö? [1] ·¯ºêÇϸð´Ï 01/14 3
342 ³×ÀÓ¼­¹ö º¯°æµÇ¾ú´Âµ¥....¿©ÀüÈ÷ ¾ÈµÇ³×¿©... [1] Free Willy 01/14 2666
343 ºü¸¥´äº¯ Á¤¸» °¨»çµå¸³´Ï´Ù.. [1] Free Willy 01/14 2461
344 ¾È³çÇϼ¼¿ä. Å×ÀÌºí ±â´É¿¡¼­ ¾Ö·Î»çÇ×.... mic 01/14 2209
345 RE:¾È³çÇϼ¼¿ä. Å×ÀÌºí ±â´É¿¡¼­ ¾Ö·Î»çÇ×.... 01/14 2599
346 ·Î±×ÀÎÀÌ Àß ¾ÈµÇ³×¿ä [1] ÆÄÀÎ 01/14 2
347 ÀÚüȨÇÇ¿¡¼­ ¸ÞÀÏÈ®ÀÎÀ» ÇÒ ¼ö ÀÖ´Â ¹æ¹ýÀº? [1] Á¶PD 01/14 1
348 Python »ç¿ë¿¡ °üÇÏ¿© [1] yuki 01/14 2370
349 ÆäÀÌÁö¸¦ ãÀ»¼ö ¾ø½À´Ï´Ù.... [1] seye 01/14 3
350 °èÁ¤È®ÀÎ Á» ÇØÁÖ¼¼¿ä [1] ´ÙÇ÷Áú 01/14 2102
FIRST132021222324252633LAST