当前位置: 首页>>代码示例>>PHP>>正文


PHP myclass::get_res_len方法代码示例

本文整理汇总了PHP中myclass::get_res_len方法的典型用法代码示例。如果您正苦于以下问题:PHP myclass::get_res_len方法的具体用法?PHP myclass::get_res_len怎么用?PHP myclass::get_res_len使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在myclass的用法示例。


在下文中一共展示了myclass::get_res_len方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: count

$user['profile_tab'] = 'looks';
$mno = $_SESSION["mno"];
$lookOwnerName = $li["lookOwnerName"];
$pltags = $li['pltags'];
$plstyle = $li['style'];
$Ttag = count($li['pltags']);
$lookName = $li["lookName"];
$lookAbout = $li["lookAbout"];
$pltvotes = $li["pltvotes"];
$trating = $li["trating"];
$style = $li["style"];
$pltratings = number_format($li["trating"]);
$webDesc = "Fashion Sponge is the easiest & fastest way to: Show your ootd, see the latest trends, discover fashionable people & blogs, get beauty & style tips & find fashion inspiration.";
$looks = $mc->retreive_specific_user_all_looks($lookOwnerMno, "order by plno desc ");
$next_prev = $mc->db_result_next_prev('postedlooks', $plno, $looks, 'all');
$total_looks = $mc->get_res_len($looks);
$total_show_looks = $mc->get_total_limit_show(intval($total_looks), 30);
$mem_info = $mc->get_user_info_by_id($mno1);
$tlooks = number_format($mem_info[0]['tlooks']);
$tratings = number_format($otrating);
/*number_format($mem_info[0]['tratings']); */
$tfollower = number_format($mem_info[0]['tfollower']);
$tfollowing = number_format($mem_info[0]['tfollowing']);
$tpercentage = number_format($mem_info[0]['tpercentage']);
$lookmodalsstyle = $mc->lookdetails_set_size_of_the_look($img, $ri);
// $mc->add_look_view( $plno );
$look_countingPos = $mc->get_modal_position_detail($plno, $looks, 'plno');
$article_link = $li['article_link'];
$more = $mc->look_with_more($plno, $article_link);
$tlc = $mc->get_total('plcno', 'posted_looks_comments', 'plno', $_SESSION['plno']);
$modal['table_name'] = 'postedlooks';
开发者ID:jesus143,项目名称:fs-dev,代码行数:31,代码来源:more-look.php

示例2: myclass

require "../../../fs_folders/php_functions/library.php";
require "../../../fs_folders/php_functions/source.php";
require "../../../fs_folders/php_functions/myclass.php";
require '../../../fs_folders/php_functions/Database/post.php';
$mc = new myclass();
$mc->post = new Post();
// $profile_tab = $_GET["profile_tab"];
// $mno = $_GET['mno'];
// $pagenum = $_GET["pagenum"];
// $_GET['tres'] = 1;
#  pass the current assign modal who will show next
$counter_tres = intval($_GET['tres']);
//this is next value passed from javascript counter
echo "<Br>  <div  onclick=\"\$('#fs-general-ajax-response').text('')\" >(x)</div>";
$r = $mc->get_activity(200);
$act_len = $mc->get_res_len($r);
$start = $mc->get_loop_start($counter_tres, 25);
$end = $mc->get_loop_end($counter_tres, 25);
$counter = $mc->set_loop_counter(1);
echo " start {$start} end {$end} <br>";
$counter_tres++;
//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']);
开发者ID:jesus143,项目名称:fs-dev,代码行数:31,代码来源:latest_modals.php


注:本文中的myclass::get_res_len方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。