1<?php 2$aspell_win = '"C:\Program Files\Aspell\bin\aspell.exe" '; 3$aspell_prog = 'aspell'; 4 5function aspell_isWindowsOS() { 6 if(isset($_SERVER['WINDIR']) && $_SERVER['WINDIR']) { 7 return true; 8 } 9 elseif(stristr(PHP_OS, 'WIN') && !aDWFCK_is_OS('DARWIN')) { 10 return true; 11 } 12 return false; 13} 14 15 16function aDWFCK_is_OS($os) { 17 $os = strtolower($os); 18 $_OS = strtolower(PHP_OS); 19 20 if($os == $_OS || stristr(PHP_OS, $os) || stristr($os,PHP_OS) ) { 21 return true; 22 } 23 return false; 24} 25 26global $iswindowsScript; 27$iswindowsScript = __FILE__; 28 29if(aspell_isWindowsOS()) { 30 $aspell_prog = $aspell_win; 31} 32 33