Variablen in PushNotification

Hallo zusammen,
gibt es eine Möglichkeit, dass die Push Nachrichten auch Varibalen enthalten?
Ich würde gerne die Aktuelle Temperatur (Variable $sensor) im Text der PushNotification mit ausgeben.

probiert habe ich es so:


$nachricht = 'Aktuelle Temperatur ist '$sensor' Grad';

WFC_PushNotification($notificationHandler, $header, $nachricht,' ', 0);

Danke im Voraus für eure Hilfe

Klar geht das. Schau dir mal unbedingt die Doku von PHP an, um zu verstehen wie es geht: PHP: Strings - Manual

Beispiel:


$nachricht = "Aktuelle Temperatur ist $sensor Grad";

WFC_PushNotification($notificationHandler, $header, $nachricht,' ', 0);

paresy

PS: Bitte die PHP Tags nicht vergessen!

danke, oh man… " statt ’ … das war definitiv zu einfach LOL :banghead: