Bir Line Array Key PHP Set Değişken

0 Cevap php

Bu çok basit bir soru olacak, ben bu gibi görünüyor kodu vardır:

<?php
$rawmessage = "This is what I want.--This is all junk.";

$fmessage = explode("--", $rawmessage);
//Alt. Universe #1: $fmessage = $fmessage[0];

echo $fmessage[0]; //"This is what I want."
//Alt. Universe #1: echo $fmessage;
?>

Şimdi bu gelebilir nasıl aptal biliyorum, ama ben bir satırda [0] için $ fmessage atayabilirsiniz bir yolu var mı? 1) Ben $ fmessage yazmak istemiyorum çünkü [0], bu noktada bir dizi olması gerekmez, ve bu ben ilk kez değil, çünkü 2) Ben bu yapılabilir olup olmadığını bilmek istiyorum Bir değişkene dizinin sadece bir bölümünü ayarlamak istedi ettik. Ben yazmak istiyorum ne Örneği (benim fantezi arazi, tabii ki. Bu gerçekte bir hata atar.)

<?php
$rawmessage = "This is what I want.--This is all junk.";

$fmessage = explode("--", $rawmessage)[0];
//In my fantasy land, adding the [0] means that the array's key [0] value is set to $fmessage

echo $fmessage; //"This is what I want." For real.
?>

0 Cevap