Opracowałem wtyczkę jQuery, która umożliwia wywołanie dowolnej podstawowej funkcji PHP, a nawet funkcji PHP zdefiniowanych przez użytkownika jako metod wtyczki: jquery.php
Po umieszczeniu jquery i jquery.php w nagłówku naszego dokumentu i umieszczeniu request_handler.php na naszym serwerze zaczęliśmy używać wtyczki w sposób opisany poniżej.
Aby ułatwić użytkowanie, odwołaj się do funkcji w prosty sposób:
var P = $.fn.php;
Następnie zainicjuj wtyczkę:
P('init',
{
// The path to our function request handler is absolutely required
'path': 'http://www.YourDomain.com/jqueryphp/request_handler.php',
// Synchronous requests are required for method chaining functionality
'async': false,
// List any user defined functions in the manner prescribed here
// There must be user defined functions with these same names in your PHP
'userFunctions': {
languageFunctions: 'someFunc1 someFunc2'
}
});
A teraz kilka scenariuszy użytkowania:
// Suspend callback mode so we don't work with the DOM
P.callback(false);
// Both .end() and .data return data to variables
var strLenA = P.strlen('some string').end();
var strLenB = P.strlen('another string').end();
var totalStrLen = strLenA + strLenB;
console.log( totalStrLen ); // 25
// .data Returns data in an array
var data1 = P.crypt("Some Crypt String").data();
console.log( data1 ); // ["$1$Tk1b01rk$shTKSqDslatUSRV3WdlnI/"]
Demonstracja tworzenia łańcuchów funkcji PHP:
var data1 = P.strtoupper("u,p,p,e,r,c,a,s,e").strstr([], "C,A,S,E").explode(",", [], 2).data();
var data2 = P.strtoupper("u,p,p,e,r,c,a,s,e").strstr([], "C,A,S,E").explode(",", [], 2).end();
console.log( data1, data2 );
Demonstracja wysyłania bloku JSON pseudokodu PHP:
var data1 =
P.block({
$str: "Let's use PHP's file_get_contents()!",
$opts:
[
{
http: {
method: "GET",
header: "Accept-language: en\r\n" +
"Cookie: foo=bar\r\n"
}
}
],
$context:
{
stream_context_create: ['$opts']
},
$contents:
{
file_get_contents: ['http://www.github.com/', false, '$context']
},
$html:
{
htmlentities: ['$contents']
}
}).data();
console.log( data1 );
Konfiguracja zaplecza zapewnia białą listę, dzięki czemu można ograniczyć wywoływanie funkcji. Jest kilka innych wzorców pracy z PHP opisanych przez wtyczkę.