本文整理汇总了PHP中School::fromDatabase方法的典型用法代码示例。如果您正苦于以下问题:PHP School::fromDatabase方法的具体用法?PHP School::fromDatabase怎么用?PHP School::fromDatabase使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类School
的用法示例。
在下文中一共展示了School::fromDatabase方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: json_encode
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
***/
require_once 'master.php';
header('Content-type: application/json');
if ($invalidparameters) {
die(json_encode(array('success' => 0, 'message' => 'Invalid parameters.')));
}
if (!isset($_REQUEST['college']) || !is_numeric($_REQUEST['college'])) {
die(json_encode(array('success' => 0, 'message' => 'Invalid college.')));
}
$collegeid = $_REQUEST['college'];
$school = new School($collegeid);
if (!$school->fromDatabase($db)) {
die(json_encode(array('success' => 0, 'message' => 'Cannot find college.')));
}
$students = $db->getStudentsAttending($school, $curhs, $curyear);
$data = array('success' => 1, 'students' => array());
// return a JSON list of students given the college's id
foreach ($students as $student) {
$concentrations = arraytocsv($db->getConcentrations($student));
$data['students'][] = array('id' => $student->id, 'name' => $student->name, 'image' => $student->imageurl, 'rank' => $student->rank, 'isFriend' => (bool) $myself->isFriends($facebook, $student), 'concentrations' => $concentrations);
}
echo json_encode($data);
示例2: School
}
// get my high school data
$hs_associds = $db->getAssociations($myself->id, AssociationTypes::HighSchool);
$myhs = $hs_associds[0];
if (!$myhs) {
if (!isset($myfb['education'])) {
$myhs = new School(0);
} else {
foreach ($myfb['education'] as $education) {
if ($education['type'] == "High School") {
$hsid = $education['school']['id'];
break;
}
}
$myhs = new School($hsid);
if (!$myhs->fromDatabase($db)) {
$myhs->fromFacebook($facebook);
}
}
}
// get current page data
$schoolid = $_REQUEST['school'];
$curyear = $_REQUEST['year'];
$curhs = new School($schoolid);
$invalidparameters = false;
if (!isset($_REQUEST['school']) || !isset($_REQUEST['year']) || !$curhs->fromFacebook($facebook) || !is_numeric($curyear) || $curyear < 1900 || $curyear > 2900) {
$invalidparameters = true;
$curyear = $myself->year;
$curhs = $myhs;
}
// writable if we are in the current hs
示例3: die
$concentrations = $education['concentration'];
} else {
if ($education['school']['id'] == $curhs->id) {
$incurschool = true;
}
}
}
if (!$incurschool) {
// not in this school
die(json_encode(array('success' => 0, 'message' => 'Friend not in same school.', 'request' => $request_message_generic)));
}
if (!$college) {
// no college added
die(json_encode(array('success' => 0, 'message' => 'Friend has no college defined.', 'request' => $request_message_specific)));
}
if (!$college->fromDatabase($db)) {
if (!$college->fromFacebook($facebook)) {
die(json_encode(array('success' => 0, 'message' => 'Cannot load school.', 'request' => $request_message_specific)));
}
if ($college->latitude == 0 || $college->longitude == 0) {
die(json_encode(array('success' => 0, 'message' => 'Cannot locate school.', 'request' => $request_message_specific)));
}
// new school, add to database
$college->updateDatabase($db);
}
// add friend to hs
$db->addAssociation($friend, $curhs->id, AssociationTypes::HighSchool);
// add friend to college
$db->addAssociation($friend, $college->id, AssociationTypes::College);
// add concentrations
if (!$concentrations) {