Files
doc-fr/reference/yar/examples.xml
Yannick Torres ab3f6b6a1c New translation
git-svn-id: https://svn.php.net/repository/phpdoc/fr/trunk@333927 c90b9560-bf6c-de11-be94-00142212c4b1
2014-06-24 13:27:17 +00:00

149 lines
3.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<!-- EN-Revision: 914b97130aed191518791045b93b6f858ef5a139 Maintainer: yannick Status: ready -->
<!-- Reviewed: no -->
<chapter xml:id="yar.examples" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.examples;
<example>
<title>Exemple de serveur Yar</title>
<programlisting role="php">
<![CDATA[
<?php
/* supposons que cette page est accessible via l'URL http://example.com/operator.php */
class Operator {
/**
* Ajout de deux opérandes
* @param interge
* @return interge
*/
public function add($a, $b) {
return $this->_add($a, $b);
}
/**
* Sub
*/
public function sub($a, $b) {
return $a - $b;
}
/**
* Mul
*/
public function mul($a, $b) {
return $a * $b;
}
/**
* Les méthodes protégées ne seront pas exposées
* @param interge
* @return interge
*/
protected function _add($a, $b) {
return $a + $b;
}
}
$server = new Yar_Server(new Operator());
$server->handle();
?>
]]>
</programlisting>
</example>
<example>
<title>Accès au serveur depuis un navigateur (requête GET)</title>
&example.outputs.similar;
<mediaobject>
<alt>Information du serveur Yar</alt>
<imageobject>
<imagedata fileref="en/reference/yar/image/yar.png" scalefit="1" width="700px" />
</imageobject>
</mediaobject>
</example>
<example>
<title>Exemple de client Yar</title>
<programlisting role="php">
<![CDATA[
<?php
$client = new yar_client("http://example.com/operator.php");
/* Appel direct */
var_dump($client->add(1, 2));
/* Appel via un appel */
var_dump($client->call("add", array(3, 2)));
/* la méthode __add ne peut être appelée */
var_dump($client->_add(1, 2));
?>
]]>
</programlisting>
&example.outputs.similar;
<screen>
<![CDATA[
int(3)
int(5)
PHP Fatal error: Uncaught exception 'Yar_Server_Exception' with message 'call to api Operator::_add() failed' in *
]]>
</screen>
</example>
<example>
<title>Exemple de client Yar concurrent</title>
<programlisting role="php">
<![CDATA[
<?php
function callback($ret, $callinfo) {
echo $callinfo['method'] , " result: ", $ret , "\n";
}
/* enregistre l'appel async aux services distants */
Yar_Concurrent_Client::call("http://example.com/operator.php", "add", array(1, 2), "callback");
Yar_Concurrent_Client::call("http://example.com/operator.php", "sub", array(2, 1), "callback");
Yar_Concurrent_Client::call("http://example.com/operator.php", "mul", array(2, 2), "callback");
/* envoi toutes les requêtes et attend les réponses */
Yar_Concurrent_Client::loop();
?>
]]>
</programlisting>
&example.outputs.similar;
<screen>
<![CDATA[
mul result: 4
sub result: 1
add result: 3
]]>
</screen>
</example>
</chapter>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->