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


PHP myclass::modal_version1_member方法代碼示例

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


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

示例1: intval

$modals_right = $r['init_latest_separated_modals_right'];
// echo " <span style='color:black' > ";
// $mc->print_r1($r);
// echo "</span> ";
echo "\n\t\t\t\t\t\t\t\t\t \t\t\t<div id='res_container'>\n\t\t\t\t\t\t\t\t\t \t\t\t\t<li id='li_res1'>";
echo " <table border='0' cellspacing='0'cellpadding='0' > ";
$modalc = 0;
for ($i = 0; $i < count($modals_left); $i++) {
    // for ($i=0; $i < 0 ; $i++) {
    $modalc++;
    $_table = $modals_left[$i]['_table'];
    $ano = intval($modals_left[$i]['ano']);
    if ($_table == 'fs_members' or $_table == 'fs_member_profile_pic') {
        echo " <td> ";
        // $mc-> modals_memeber( $ano , 'init' );
        $mc->modal_version1_member($ano, 'init');
        echo " </td><tr>";
    } else {
        if ($_table == 'postedlooks') {
            echo " <td>";
            // $mc->modals_look_init( $ano );
            $mc->modal_version1_look($ano);
            echo "</td><tr>";
        } else {
            if ($_table == 'fs_postedarticles') {
                echo " <td>";
                $mc->modal_version1_article($ano);
                echo "</td><tr>";
            }
        }
    }
開發者ID:jesus143,項目名稱:fs-dev,代碼行數:31,代碼來源:more-look.php

示例2: intval

//increment the counter
# add 1 so that when click view more another different modals will show
// $_SESSION['counter']++;
for ($i = $start; $i < $end; $i++) {
    if ($i < $act_len) {
        $ano = intval($r[$i]['ano']);
        $mno = intval($r[$i]['mno']);
        $action = $r[$i]['action'];
        $_table = $r[$i]['_table'];
        $_table_id = intval($r[$i]['_table_id']);
        $_date = intval($r[$i]['_date']);
        $active = intval($r[$i]['active']);
        // echo " tres = $tres ano = $ano mno= $mno  action = $action    _table = $_table   _table_id = $_table_id     _date = $_date    active = $active <br>";
        if ($_table == 'fs_members') {
            // $mc->modals_memeber( $ano );
            $mc->modal_version1_member($ano, null, '../../../');
        } else {
            if ($_table == 'postedlooks') {
                // $mc->modals_look( $_table_id , null , 'home' );
                // $mc->modals_look( $ano , null , 'home' );
                $mc->modal_version1_look($ano, '../../../', '../../../');
            } else {
                if ($_table == 'fs_postedarticles') {
                    $mc->modal_version1_article($ano, '../../../', '../../../');
                } else {
                    if ($_table == 'postedmedia') {
                    } else {
                        if ($_table == 'postedads') {
                        }
                    }
                }
開發者ID:jesus143,項目名稱:fs-dev,代碼行數:31,代碼來源:latest_modals.php


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