Sezione stringa php

Esempi di codice

31
0

substr () php


<?php
echo substr('abcdef', 1);     // bcdef
echo substr('abcdef', 1, 3);  // bcd
echo substr('abcdef', 0, 4);  // abcd
echo substr('abcdef', 0, 8);  // abcdef
echo substr('abcdef', -1, 1); // f

// Accessing single characters in a string
// can also be achieved using "square brackets"
$string = 'abcdef';
echo $string[0];                 // a
echo $string[3];                 // d
echo $string[strlen($string)-1]; // f

?>

//substr() function returns certain bits of a string 
8
0

php ottiene il primo carattere della stringa

$firstStringCharacter = substr("hello", 0, 1);
3
0

sezione stringa php


substr(string,start,length)
2
0

prendi 10 caratteri dalla stringa usando php

$return_string = substr("Hi i am returning first 10 characters.", 0, 10);
Output:
"Hi i am re"
2
0

sezione matrice php

// array_slice($array, $offset, $length)

$array = array(1,2,3,4,5,6);

// positive $offset: an offset from the begining of array  
print_r(array_slice($array, 2)); // [3,4,5,6]

// negative $offset: an offset from the end of array
print_r(array_slice($array, -2)); // [5,6]

// positive $length: the slicing will stop $length elements
// from offset
print_r(array_slice($array, 2, 3)); // [3,4,5]

// negative $length: the slicing will stop $length elements
// from the end of array
print_r(array_slice($array, 2, -3)); // [3]
0
0

php trim stringa alla lunghezza

<?php
echo substr('abcdef', 1);     // bcdef
echo substr('abcdef', 1, 3);  // bcd
echo substr('abcdef', 0, 4);  // abcd
echo substr('abcdef', 0, 8);  // abcdef
echo substr('abcdef', -1, 1); // f

// Accessing single characters in a string
// can also be achieved using "square brackets"
$string = 'abcdef';

In altre lingue

Questa pagina è in altre lingue

Русский
..................................................................................................................
English
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................