您搜索了: useful (韩语 - 英语)

计算机翻译

尝试学会如何从人工翻译例句找到译文。

Korean

English

信息

Korean

useful

English

 

从: 机器翻译
建议更好的译文
质量:

人工翻译

来自专业的译者、企业、网页和免费的翻译库。

添加一条翻译

韩语

英语

信息

韩语

the function can be useful for developing categories tree browser.

英语

returns array with the following format:

最后更新: 2011-10-24
使用频率: 1
质量:

韩语

a look at the section about posix functions may be useful.

英语

pcntl_exec

最后更新: 2011-10-24
使用频率: 1
质量:

韩语

useful after ifx_prepare() to limit queries to reasonable result sets.

英语

example 1.

最后更新: 2011-10-24
使用频率: 1
质量:

韩语

this is useful for storing or passing php values around without losing their type and structure.

英语

when serializing objects, php will attempt to call the member function __sleep() prior to serialization.

最后更新: 2011-10-24
使用频率: 1
质量:

韩语

sorts an array by key, maintaining key to data correlations. this is useful mainly for associative arrays.

英语

sorts an array by key, maintaining key to data correlations.

最后更新: 2011-10-24
使用频率: 1
质量:

韩语

this function is useful when you need to generate a particular response to an exception at runtime. for example:

英语

for example:

最后更新: 2011-10-24
使用频率: 1
质量:

韩语

sorts an array by key in reverse order, maintaining key to data correlations. this is useful mainly for associative arrays.

英语

sorts an array by key in reverse order, maintaining key to data correlations.

最后更新: 2011-10-24
使用频率: 1
质量:

韩语

a most useful demonstration is a function that accepts a complex type as argument, modifies it, and then returns the argument:

英语

for strings, proper memory allocation would have to be assured, and so on.

最后更新: 2011-10-24
使用频率: 1
质量:

韩语

ovrimos_cursor() returns the name of the cursor. useful when wishing to perform positioned updates or deletes.

英语

useful when wishing to perform positioned updates or deletes.

最后更新: 2011-10-24
使用频率: 1
质量:

韩语

turns the border display on and off. the borders are never printed. this option is useful to see how the document will appear on the printed page.

英语

turns the border display on and off. the borders are never printed. this option is useful to see how the document will appear on the printed page.

最后更新: 2011-10-23
使用频率: 1
质量:

韩语

additional_parameter is a mta command line parameter. it is useful when setting the correct return-path header when using sendmail.

英语

returns true on success or false on failure.

最后更新: 2011-10-24
使用频率: 1
质量:

韩语

cybermut is a popular web payment service in france, provided by the crédit mutuel bank. if you are foreign in france, these functions will not be useful for you.

英语

if you are foreign in france, these functions will not be useful for you.

最后更新: 2011-10-24
使用频率: 1
质量:

韩语

if the optional delimiter is specified, it will also be escaped. this is useful for escaping the delimiter that is required by the pcre functions. the / is the most commonly used delimiter.

英语

this is useful for escaping the delimiter that is required by the pcre functions.

最后更新: 2011-10-24
使用频率: 1
质量:

韩语

eval() evaluates the string given in code_str as php code. among other things, this can be useful for storing code in a database text field for later execution.

英语

among other things, this can be useful for storing code in a database text field for later execution.

最后更新: 2011-10-24
使用频率: 1
质量:

韩语

curlopt_customrequest: pass a string to be used instead of get or head when doing an http request. this is useful for doing delete or another, more obscure, http request.

英语

if the string does not match one of these, then 'private' is used.

最后更新: 2011-10-24
使用频率: 1
质量:

韩语

an assertion is a test on the characters following or preceding the current matching point that does not actually consume any characters. the simple assertions coded as \b, \b, \a, \z, \z, ^ and $are described above. more complicated assertions are coded as subpatterns. there are two kinds: those that look ahead of the current position in the subject string, and those that look behind it. an assertion subpattern is matched in the normal way, except that it does not cause the current matching position to be changed. lookahead assertions start with (?= for positive assertions and (?! for negative assertions. for example, \w+(?=;) matches a word followed by a semicolon, but does not include the semicolon in the match, and foo(?!bar) matches any occurrence of "foo" that is not followed by "bar". note that the apparently similar pattern (?!foo)bar does not find an occurrence of "bar" that is preceded by something other than "foo"; it finds any occurrence of "bar" whatsoever, because the assertion (?!foo) is always true when the next three characters are "bar". a lookbehind assertion is needed to achieve this effect. lookbehind assertions start with (? = for positive assertions and (?! for negative assertions. for example, (? !foo)bar does find an occurrence of "bar" that is not preceded by "foo". the contents of a lookbehind assertion are restricted such that all the strings it matches must have a fixed length. however, if there are several alternatives, they do not all have to have the same fixed length. thus (? =bullock_bar_donkey) is permitted, but (? !dogs?_bar_cats?) causes an error at compile time. branches that match different length strings are permitted only at the top level of a lookbehind assertion. this is an extension compared with perl 5.005, which requires all branches to match the same length of string. an assertion such as (? =ab(c_bar_de)) is not permitted, because its single top-level branch can match two different lengths, but it is acceptable if rewritten to use two top-level branches: (? =abc_bar_abde) the implementation of lookbehind assertions is, for each alternative, to temporarily move the current position back by the fixed width and then try to match. if there are insufficient characters before the current position, the match is deemed to fail. lookbehinds in conjunction with once-only subpatterns can be particularly useful for matching at the ends of strings; an example is given at the end of the section on once-only subpatterns. several assertions (of any sort) may occur in succession. for example, (? =\d{3})(? !999)foo matches "foo" preceded by three digits that are not "999". notice that each of the assertions is applied independently at the same point in the subject string. first there is a check that the previous three characters are all digits, then there is a check that the same three characters are not "999". this pattern does not match "foo" preceded by six characters, the first of which are digits and the last three of which are not "999". for example, it doesn't match "123abcfoo". a pattern to do that is (? =\d{3}...)(? !999)foo this time the first assertion looks at the preceding six characters, checking that the first three are digits, and then the second assertion checks that the preceding three characters are not "999". assertions can be nested in any combination. for example, (? =(? !foo)bar)baz matches an occurrence of "baz" that is preceded by "bar" which in turn is not preceded by "foo", while (? =\d{3}(?!999)...)foo is another pattern which matches "foo" preceded by three digits and any three characters that are not "999". assertion subpatterns are not capturing subpatterns, and may not be repeated, because it makes no sense to assert the same thing several times. if any kind of assertion contains capturing subpatterns within it, these are counted for the purposes of numbering the capturing subpatterns in the whole pattern. however, substring capturing is carried out only for positive assertions, because it does not make sense for negative assertions. assertions count towards the maximum of 200 parenthesized subpatterns.

英语

it is more efficient to use a character class like [aeiou] than a set of alternatives such as (a_bar_e_bar_i_bar_o_bar_u).

最后更新: 2011-10-24
使用频率: 1
质量:

警告:包含不可见的HTML格式

获取更好的翻译,从
7,794,439,196 条人工翻译中汲取

用户现在正在寻求帮助:



Cookie 讓我們提供服務。利用此服務即表示你同意我們使用Cookie。 更多資訊。 確認