mirror of
https://github.com/php/presentations.git
synced 2026-03-24 23:52:18 +01:00
26 lines
525 B
XML
26 lines
525 B
XML
<slide title="PHP et VoiceXML">
|
|
<blurb title="Définir l'entête"/>
|
|
<blurb>exemple.php</blurb>
|
|
<example fontsize="1.2em"><![CDATA[<?php
|
|
header('Content-type: text/xml');
|
|
$heures = date('H');
|
|
$minutes = date('i');
|
|
?>
|
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
<vxml version="2.0">
|
|
<form>
|
|
<block>
|
|
<prompt>
|
|
<?php
|
|
echo 'Il est actuellement ' .
|
|
$heures . ' heures et ' .
|
|
$minutes . ' minutes.';
|
|
?>
|
|
</prompt>
|
|
<exit />
|
|
</block>
|
|
</form>
|
|
</vxml>
|
|
]]></example>
|
|
</slide>
|