[ Index ] |
|
Code source de eZ Publish 3.9.0 |
1 $arr|insert( 3, 4, 5, 6 )|implode( ',' )='1,2,3,4,5,6' 2 $arr|insert( 0, -2, -1, 0 )|implode( ',' )='-2,-1,0,1,2,3' 3 $arr|remove( 2 )|implode( ',' )='1,2' 4 $arr|remove( 0, 2 )|implode( ',' )='3' 5 $arr|remove( 1, 1 )|implode( ',' )='1,3' 6 $arr|replace( 2, 1, 4, 5, 6 )|implode( ',' )='1,2,4,5,6' 7 $arr|replace( 0, 2, -1, -2 )|implode( ',' )='-1,-2,3' 8 9 $string|insert( 3, "456" )='123456' 10 $string|insert( 0, "-2-10" )='-2-10123' 11 $string|remove( 2 )='12' 12 $string|remove( 0, 2 )='3' 13 $string|remove( 1, 1 )='13' 14 $string|replace( 2, 1, "456" )='12456' 15 $string|replace( 0, 2, "-1-2" )='-1-23'
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Sat Feb 24 10:30:04 2007 | par Balluche grâce à PHPXref 0.7 |