Acceptable Format Values for fscanf() : fscanf « File Directory « PHP






Acceptable Format Values for fscanf()

 
%b      Binary number
 
%c      Single character
 
%d      Signed decimal number
 
%u      Unsigned decimal number
 
%f      Float
 
%o      Octal
 
%s      String
 
%x      Hexadecimal Number
  
  








Related examples in the same category

1.fscanf.php
2.Reading Formatted Text Using fscanf()