<?php
//=================================================================
// Lead Follow-Up Database
// Copyright (c) phpkobo.com ( http://www.phpkobo.com/ )
// Email : hide@address.com
// ID : LF201_107
//
// This software is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; version 2 of the
// License.
//
// [Installation Guide]
// http://www.phpkobo.com/doc.php?d=install&p=LF201_107
//
//=================================================================
//----------------------------------------------------------------
// String Functions
//----------------------------------------------------------------
class CStr
{
function e2n( $s )
{
return ( $s == '' ? null : $s );
}
function n2e( $s )
{
return ( is_null( $s ) ? '' : $s );
}
function html( $s )
{
if ( is_null( $s ) )
return '';
else
return htmlspecialchars( $s );
}
function implode( $sepa, $ax, $idx )
{
$s = '';
foreach( $ax as $v )
{
if ( $s != '' ) $s .= $sepa;
$s .= $v[$idx];
}
return $s;
}
}
?>