PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

mysqli_send_long_data> <mysqli_rpl_probe
Last updated: Fri, 18 Jul 2008

view this page in

mysqli_rpl_query_type

mysqli->rpl_query_type

(PHP 5)

mysqli->rpl_query_type — Regresa el tipo de consulta RPL

Descripción

Estilo por procedimientos:

int mysqli_rpl_query_type ( mysqli $link , string $query )

Estilo orientado a objetos (método)

mysqli
int rpl_query_type ( string $query )
Warning

Esta función es EXPERIMENTAL. Esto significa que el comportamiento de esta función, el nombre de esta función y en definitiva TODO lo documentado sobre esta función, puede cambiar en una futura version de PHP SIN AVISO. La advertencia queda hecha, y utilizar esta extensión queda bajo su propia responsabilidad.



add a note add a note User Contributed Notes
mysqli_rpl_query_type
technique-glamour at condenast dot fr
19-Jul-2007 05:28
WARNING : this function (or maybe the "enable_rpl_parse" function) randomly causes a segfault into PHP.
We don't use this function anymore. Instead we check if the query contains the word 'SELECT' :

function query_type($query)
{
    if ( stripos($query,'SELECT'))   
        return true;
    return false;
}

mysqli_send_long_data> <mysqli_rpl_probe
Last updated: Fri, 18 Jul 2008
 
 
show source | credits | sitemap | contact | advertising | mirror sites