コード例 #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
ファイル: ext_stream.cpp プロジェクト: Bluarggag/hhvm
Variant f_stream_context_set_default(CArrRef options) {
  return f_stream_context_get_default(options);
}