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


PHP acf_str_exists函数代码示例

本文整理汇总了PHP中acf_str_exists函数的典型用法代码示例。如果您正苦于以下问题:PHP acf_str_exists函数的具体用法?PHP acf_str_exists怎么用?PHP acf_str_exists使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


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

示例1: acf_decode_choices

function acf_decode_choices($string = '')
{
    // validate
    if (is_numeric($string)) {
        // force array on single numeric values
        return array($string);
    } elseif (!is_string($string)) {
        // bail early if not a a string
        return $string;
    }
    // vars
    $array = array();
    // explode
    $lines = explode("\n", $string);
    // key => value
    foreach ($lines as $line) {
        // vars
        $k = trim($line);
        $v = trim($line);
        // look for ' : '
        if (acf_str_exists(' : ', $line)) {
            $line = explode(' : ', $line);
            $k = trim($line[0]);
            $v = trim($line[1]);
        }
        // append
        $array[$k] = $v;
    }
    // return
    return $array;
}
开发者ID:sdh100shaun,项目名称:pantheon,代码行数:31,代码来源:api-helpers.php

示例2: update_value

 function update_value($value, $post_id, $field)
 {
     // no formatting needed for empty value
     if (empty($value)) {
         return $value;
     }
     // remove ','
     if (acf_str_exists(',', $value)) {
         $value = str_replace(',', '', $value);
     }
     // return
     return $value;
 }
开发者ID:harrisonsmith,项目名称:active-progression,代码行数:13,代码来源:number.php

示例3: acf_decode_choices

function acf_decode_choices($string = '')
{
    // bail early if already array
    if (is_array($string)) {
        return $string;
    }
    // vars
    $array = array();
    // bail ealry if not string
    if (!is_string($string)) {
        return $array;
    }
    // explode choices from each line
    if (!empty($string)) {
        // stripslashes ("")
        $string = stripslashes_deep($string);
        // explode
        $temp = explode("\n", $string);
        // key => value
        foreach ($temp as $v) {
            if (acf_str_exists(' : ', $v)) {
                $v = explode(' : ', $v);
                $array[trim($v[0])] = trim($v[1]);
            } else {
                $array[trim($v)] = trim($v);
            }
        }
    }
    // return
    return $array;
}
开发者ID:mariussunde,项目名称:Sn-hetta-Designmanual-WP-Theme,代码行数:31,代码来源:api-helpers.php

示例4: acf_decode_choices

function acf_decode_choices($string = '', $array_keys = false)
{
    // bail early if already array
    if (is_array($string)) {
        return $string;
        // allow numeric values (same as string)
    } elseif (is_numeric($string)) {
        // do nothing
        // bail early if not a string
    } elseif (!is_string($string)) {
        return array();
        // bail early if is empty string
    } elseif ($string === '') {
        return array();
    }
    // vars
    $array = array();
    // explode
    $lines = explode("\n", $string);
    // key => value
    foreach ($lines as $line) {
        // vars
        $k = trim($line);
        $v = trim($line);
        // look for ' : '
        if (acf_str_exists(' : ', $line)) {
            $line = explode(' : ', $line);
            $k = trim($line[0]);
            $v = trim($line[1]);
        }
        // append
        $array[$k] = $v;
    }
    // return only array keys? (good for checkbox default_value)
    if ($array_keys) {
        return array_keys($array);
    }
    // return
    return $array;
}
开发者ID:Garth619,项目名称:Femi9,代码行数:40,代码来源:api-helpers.php

示例5: acf_decode_choices

function acf_decode_choices($string = '')
{
    // bail early if nota a string
    if (!is_string($string)) {
        return $string;
    }
    // vars
    $array = array();
    // explode choices from each line
    //if( !empty($string) ) {
    // stripslashes ("")
    //$string = stripslashes_deep($string);
    // explode
    $lines = explode("\n", $string);
    // key => value
    foreach ($lines as $line) {
        // vars
        $k = trim($line);
        $v = trim($line);
        // look for ' : '
        if (acf_str_exists(' : ', $line)) {
            $line = explode(' : ', $line);
            $k = trim($line[0]);
            $v = trim($line[1]);
        }
        // append
        $array[$k] = $v;
    }
    //}
    // bail early if no choices
    if (empty($array)) {
        return '';
    }
    // return
    return $array;
}
开发者ID:eea76,项目名称:hammer,代码行数:36,代码来源:api-helpers.php


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