PHP
Strängformatering
Sök…
Utdragning / byte av underlag
Enstaka tecken kan extraheras med hjälp av array (kvadratisk stag) -syntax såväl som lockigt stag-syntax. Dessa två syntaxer returnerar bara ett enda tecken från strängen. Om mer än ett tecken behövs krävs en funktion, dvs.
Strängar, liksom allt i PHP är 0
-indexed.
$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'
Strängar kan också ändras ett tecken i taget med samma kvadratiska stag och syntax med lockigt stöd. Att byta ut mer än ett tecken kräver en funktion, dvs - 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
Stränginterpolering
Du kan också använda interpolering för att interpolera ( infoga ) en variabel i en sträng. Interpolering fungerar endast i dubbelciterade strängar och heredoc-syntaxen.
$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."
Det komplexa (lockiga) syntaxformatet ger ett annat alternativ som kräver att du packar in din variabel i lockiga hängslen {}
. Detta kan vara användbart när du inbäddar variabler i textinnehåll och hjälper till att förhindra eventuell tvetydighet mellan textinnehåll och variabler.
$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"
Syntaxen {}
interpolerar endast variabler som börjar med $
till en sträng. Den {}
syntaxen utvärderar inte godtyckliga PHP uttryck.
// 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()}"
Emellertid den {}
gör syntax utvärdera eventuella array, Tillgång egendom och funktion / metodanrop på variabler, arrayelement eller egenskaper:
// 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!"
Lägg märke till att dollar $
tecken kan visas efter öppnandet lockiga stag {
som ovanstående exempel, eller, som i Perl eller Shell Script kan framträda inför det:
$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>"
Den
Complex (curly) syntax
kallas inte som sådan eftersom den är komplex, utan snarare för att den möjliggör användning av " komplexa uttryck ". Läs mer omComplex (curly) syntax