Ejemplo n.º 1
0
 public static string gzgetss(PhpResource zp, int length = -1, string allowable_tags = null)
 {
     return(length < 0
         ? PhpPath.fgetss(zp)
         : PhpPath.fgetss(zp, length, allowable_tags));
 }
Ejemplo n.º 2
0
 public static object gzgetss(PhpResource zp, int length = -1, string allowable_tags = null)
 {
     return((length == -1)
         ? PhpPath.fgetss(zp)
         : PhpPath.fgetss(zp, length, allowable_tags.ToString()));
 }