示例#1
0
bool TestExtStream::test_stream_context_get_default() {
  try {
    f_stream_context_get_default();
  } catch (NotImplementedException e) {
    return Count(true);
  }
  return Count(false);
}
示例#2
0
文件: ext_stream.cpp 项目: 2bj/hhvm
Variant f_stream_context_set_default(const Array& options) {
  return f_stream_context_get_default(options);
}
示例#3
0
Variant f_stream_context_set_default(CArrRef options) {
  return f_stream_context_get_default(options);
}