[PHP] pobierz, plaintext <?php$strSzukaj = 'słowo';$strText = fread( fopen( $strFile, 'r+' ), filesize( $strFile ) );$arrText = explode( ' ', $strText ); foreach( $arrText AS $strSlowo ){ if( $strSlowo = $strSzukaj ) { echo 'jest'; }} // 2 sposob if( in_array( $strSzukaj, $arrText ) ){ echo 'jest';}else{ echo 'nie ma';}?>[PHP] pobierz, plaintext