This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace Utils; | |
/** | |
* Description of TreeModel | |
* @author Tomaš Grasl <grasl.t@centrum.cz> | |
* @category utils | |
* Slouží pro vytvoření stromové struktury | |
* <code> | |
* $createTree = new Utils/TreeModel(); | |
* $createTree->setKey('id_modul'); | |
* $createTree->setParentKey('group'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @param string $fileName | |
* @return resource | |
*/ | |
function imagecreatefrombmp($fileName) { | |
$file = fopen($fileName, "rb"); | |
$read = fread($file, 10); | |
while (!feof($file) && ($read <> "")) |
NewerOlder