Lines Matching refs:sKey
96 list( $sKey, $sVal ) = explode( '=', $sKeyVal );
98 if( $sKey == 'content' || !array_key_exists( $sKey, $opt ) ){
103 if( is_bool( $opt[ $sKey ] ) ){
104 $opt[ $sKey ] = ( strtolower( $sVal ) == 'true' );
105 }else if( is_int( $opt[ $sKey ] ) ){
106 $opt[ $sKey ] = intval( $sVal );
108 $opt[ $sKey ] = $sVal;
124 $sKey = trim( substr( $sOptions, 0, $iPosStop ) );
140 if( !is_null( $oFilters ) && !in_array( $sKey, $oFilters ) ){
143 …echo 'Syntax error : the option is not found : <pre style="color:red"> key : '.$sKey.', value : '.…
149 $oOptions[ $sKey ] = $sValue;
234 foreach( $oOptions as $sKey=>$oValue ){
235 $oLine[ 'options' ][ $sKey ] = $oValue;