X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;ds=sidebyside;f=includes%2FZhClient.php;h=c5955aeca7a525e259a0eb652d8f48d630f5bfc3;hb=c58873fb4213447615761a55fd2be72fa53f8ec2;hp=4299841b330a280114959e10cf3ab582a86d5b85;hpb=ebf2912801913acc724413a6e2967d78cae77223;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/ZhClient.php b/includes/ZhClient.php index 4299841b33..c5955aeca7 100644 --- a/includes/ZhClient.php +++ b/includes/ZhClient.php @@ -50,7 +50,7 @@ class ZhClient { } /** - * Establish conncetion + * Establish connection * * @access private * @@ -81,14 +81,14 @@ class ZhClient { $result = fgets( $this->mFP, 1024 ); list( $status, $len ) = explode( ' ', $result ); - if( $status == 'ERROR' ) { + if ( $status == 'ERROR' ) { // $len is actually the error code... print "zhdaemon error $len
\n"; return false; } $bytesread = 0; $data = ''; - while( !feof( $this->mFP ) && $bytesread < $len ) { + while ( !feof( $this->mFP ) && $bytesread < $len ) { $str = fread( $this->mFP, $len - $bytesread ); $bytesread += strlen( $str ); $data .= $str; @@ -100,8 +100,8 @@ class ZhClient { /** * Convert the input to a different language variant * - * @param $text String: input text - * @param $tolang String: language variant + * @param string $text input text + * @param string $tolang language variant * @return string the converted text */ function convert( $text, $tolang ) { @@ -117,7 +117,7 @@ class ZhClient { /** * Convert the input to all possible variants * - * @param $text String: input text + * @param string $text input text * @return array langcode => converted_string */ function convertToAllVariants( $text ) { @@ -131,7 +131,7 @@ class ZhClient { $info = explode( ';', $infoline ); $ret = array(); $i = 0; - foreach( $info as $variant ) { + foreach ( $info as $variant ) { list( $code, $len ) = explode( ' ', $variant ); $ret[strtolower( $code )] = substr( $data, $i, $len ); $i += $len; @@ -142,7 +142,7 @@ class ZhClient { /** * Perform word segmentation * - * @param $text String: input text + * @param string $text input text * @return string segmented text */ function segment( $text ) {