Tema
:
Problemas con tcpdf
Ver Mensaje Individual
#
2
(
permalink
)
03/09/2008, 09:16
GatorV
$this->role('moderador');
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años, 8 meses
Puntos: 2135
Respuesta: Problemas con tcpdf
La función stripos solo esta disponible para PHP5, si quieres usarla en PHP4 debes de usar algo así:
Código PHP:
function
stripos
(
$haystack
,
$needle
){
return
strpos
(
$haystack
,
stristr
(
$haystack
,
$needle
));
}
Saludos.
GatorV
Ver Perfil
Buscar todos los Mensajes de GatorV