Search this site
Home
Apache
BSD
C#.NET
C/C++
CiscoASA
CiscoIOS
ColdFusion
Cygwin
DB2
Dbg
Eclipse
EJB
Far
GAE
GWT
HTML
IIS
InfoSec
Java
JavaScript
JBoss
jQuery
JunOS
Linux
MSSQL
MySQL
OMSA
OracleDB
Perl
PHP
PL/SQL
PowerConnect
PowerShell
Regex
ShellScript
Tomcat
VB.NET
Visual Studio
Weblogic
Windows
Sitemap
PHP
>
Remove NULL Bytes
Removing NULL Bytes from a string in PHP
foreach ($lines as &$value)
{
$value = str_replace("\0", "", $value);
//do something with $value;
}
Comments