function acGetOption()

in extensions/CreateBox/CreateBox.php [85:94]


function acGetOption( $input, $name, $value = null ) {
	if( preg_match( "/^\s*$name\s*=\s*(.*)/mi", $input, $matches ) ) {
		if( is_int( $value ) ) {
			return intval( $matches[1] );
		} else {
			return htmlspecialchars( $matches[1] );
		}
	}
	return $value;
}