Ricerca…


Estrazione / sostituzione di sottostringhe

È possibile estrarre singoli caratteri utilizzando la sintassi dell'array (parentesi quadra) e la sintassi della parentesi graffa. Queste due sintassi restituiranno un solo carattere dalla stringa. Se è necessario più di un carattere, sarà richiesta una funzione, cioè substr

Le stringhe, come tutto in PHP, sono 0 -indice.

$foo = 'Hello world';

$foo[6]; // returns 'w'
$foo{6}; // also returns 'w'

substr($foo, 6, 1); // also returns 'w'
substr($foo, 6, 2); // returns 'wo'

Le stringhe possono anche essere modificate un carattere alla volta usando la stessa parentesi quadra e la stessa sintassi di parentesi graffa. Sostituire più di un personaggio richiede una funzione, ovvero substr_replace

$foo = 'Hello world';

$foo[6] = 'W'; // results in $foo = 'Hello World'
$foo{6} = 'W'; // also results in $foo = 'Hello World'

substr_replace($foo, 'W', 6, 1); // also results in $foo = 'Hello World'
substr_replace($foo, 'Whi', 6, 2); // results in 'Hello Whirled'
// note that the replacement string need not be the same length as the substring replaced

Interpolazione a stringa

È inoltre possibile utilizzare l'interpolazione per interpolare ( inserire ) una variabile all'interno di una stringa. L'interpolazione funziona solo con le stringhe con doppie virgolette e con la sintassi di heredoc.

$name = 'Joel';

// $name will be replaced with `Joel`
echo "<p>Hello $name, Nice to see you.</p>";
#                ↕
#>   "<p>Hello Joel, Nice to see you.</p>"

// Single Quotes: outputs $name as the raw text (without interpreting it)
echo 'Hello $name, Nice to see you.'; # Careful with this notation
#> "Hello $name, Nice to see you."

Il formato di sintassi complesso (di ricci) fornisce un'altra opzione che richiede di avvolgere la variabile all'interno di parentesi graffe {} . Questo può essere utile quando si incorporano variabili all'interno del contenuto testuale e si aiuta a prevenire possibili ambiguità tra contenuto testuale e variabili.

$name = 'Joel';

// Example using the curly brace syntax for the variable $name
echo "<p>We need more {$name}s to help us!</p>";
#> "<p>We need more Joels to help us!</p>"

// This line will throw an error (as `$names` is not defined)
echo "<p>We need more $names to help us!</p>";
#> "Notice: Undefined variable: names"

La sintassi {} interpola solo le variabili che iniziano con $ in una stringa. La sintassi {} non valuta le espressioni PHP arbitrarie.

// Example tying to interpolate a PHP expression
echo "1 + 2 = {1 + 2}";
#> "1 + 2 = {1 + 2}"

// Example using a constant
define("HELLO_WORLD", "Hello World!!");
echo "My constant is {HELLO_WORLD}";
#> "My constant is {HELLO_WORLD}"

// Example using a function
function say_hello() {
    return "Hello!";
};
echo "I say: {say_hello()}";
#> "I say: {say_hello()}"

Tuttavia, la sintassi {} valuta qualsiasi accesso di array, accesso alla proprietà e chiamate di funzioni / metodi su variabili, elementi di array o proprietà:

// Example accessing a value from an array — multidimensional access is allowed
$companions = [0 => ['name' => 'Amy Pond'], 1 => ['name' => 'Dave Random']];
echo "The best companion is: {$companions[0]['name']}";
#> "The best companion is: Amy Pond"

// Example of calling a method on an instantiated object
class Person {
  function say_hello() {
    return "Hello!";
  }
}

$max = new Person();

echo "Max says: {$max->say_hello()}";
#> "Max says: Hello!"

// Example of invoking a Closure — the parameter list allows for custom expressions
$greet = function($num) {
    return "A $num greetings!";
};
echo "From us all: {$greet(10 ** 3)}";
#> "From us all: A 1000 greetings!"

Si noti che il simbolo $ del dollaro può apparire dopo la parentesi graffa di apertura { come gli esempi precedenti, o, come in Perl o Shell Script, può comparire prima di esso:

$name = 'Joel';

// Example using the curly brace syntax with dollar sign before the opening curly brace
echo "<p>We need more ${name}s to help us!</p>";
#> "<p>We need more Joels to help us!</p>"

La Complex (curly) syntax non è chiamata in quanto tale perché è complessa, ma piuttosto perché consente l'uso di " espressioni complesse ". Maggiori informazioni sulla Complex (curly) syntax



Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow