當前位置: 首頁>>代碼示例>>PHP>>正文


PHP StudentInfo::setGysznj方法代碼示例

本文整理匯總了PHP中StudentInfo::setGysznj方法的典型用法代碼示例。如果您正苦於以下問題:PHP StudentInfo::setGysznj方法的具體用法?PHP StudentInfo::setGysznj怎麽用?PHP StudentInfo::setGysznj使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在StudentInfo的用法示例。


在下文中一共展示了StudentInfo::setGysznj方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: GetStudentInfo

 function GetStudentInfo($zkzh)
 {
     $sql = "select * from t_StudentInfo where zkzh='{$zkzh}'";
     $sqlHelper = new SqlHelper();
     $arr = $sqlHelper->execute_dql2($sql);
     $sqlHelper->close_connect();
     // 二次封裝,$arr=>StudentInfo對象實例
     $studentInfo = new StudentInfo();
     if (count($arr) > 0) {
         $studentInfo->setZkzh($arr[0]['zkzh']);
         $studentInfo->setName($arr[0]['name']);
         $studentInfo->setSex($arr[0]['sex']);
         $studentInfo->setKslb($arr[0]['kslb']);
         $studentInfo->setZzmm($arr[0]['zzmm']);
         $studentInfo->setNation($arr[0]['nation']);
         $studentInfo->setByxx($arr[0]['byxx']);
         $studentInfo->setHkszd($arr[0]['hkszd']);
         $studentInfo->setAddress($arr[0]['address']);
         $studentInfo->setTelephone($arr[0]['telephone']);
         $studentInfo->setZcxx($arr[0]['zcxx']);
         $studentInfo->setCardNumber($arr[0]['cardNumber']);
         $studentInfo->setXjh($arr[0]['xjh']);
         $studentInfo->setGysznj($arr[0]['gysznj']);
         $studentInfo->setGesznj($arr[0]['gesznj']);
         $studentInfo->setGssznj($arr[0]['gssznj']);
         $studentInfo->setMemo($arr[0]['memo']);
         $studentInfo->setPhoto($arr[0]['photo']);
     }
     return $studentInfo;
 }
開發者ID:otkinlife,項目名稱:MyPhalcon,代碼行數:30,代碼來源:StudentInfoService.class.php

示例2: array

 require_once "../util/upload.class.php";
 require_once "../util/util.php";
 $studentInfo->setZkzh($array_studentInfo['zkzh']);
 $studentInfo->setName($array_studentInfo['name']);
 $studentInfo->setSex($array_studentInfo['sex']);
 $studentInfo->setKslb($array_studentInfo['kslb']);
 $studentInfo->setZzmm($array_studentInfo['zzmm']);
 $studentInfo->setNation($array_studentInfo['nation']);
 $studentInfo->setByxx($array_studentInfo['byxx']);
 $studentInfo->setHkszd($array_studentInfo['hkszd']);
 $studentInfo->setAddress($array_studentInfo['address']);
 $studentInfo->setTelephone($array_studentInfo['telephone']);
 $studentInfo->setZcxx($array_studentInfo['zcxx']);
 $studentInfo->setCardNumber($array_studentInfo['cardNumber']);
 $studentInfo->setXjh($array_studentInfo['xjh']);
 $studentInfo->setGysznj($array_studentInfo['gysznj']);
 $studentInfo->setGesznj($array_studentInfo['gesznj']);
 $studentInfo->setGssznj($array_studentInfo['gssznj']);
 $studentInfo->setMemo($array_studentInfo['memo']);
 $photo = "/upload/NoImage.jpg";
 if ($_FILES['photo']['name'] != '') {
     /*--  實例化上傳類  --*/
     $file = $_FILES['photo'];
     $upload_path = '../upload';
     $allow_type = array('jpg', 'bmp', 'png', 'gif', 'jpeg');
     $max_size = 2048000;
     $upload = new upFiles($file, $upload_path, $max_size, $allow_type);
     $upload->upload();
     $pic = $upload->getSaveFileInfo();
     $photo = substr($pic['path'], 2) . "/" . $pic['savename'];
 }
開發者ID:otkinlife,項目名稱:MyPhalcon,代碼行數:31,代碼來源:StudentInfoAction.php


注:本文中的StudentInfo::setGysznj方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。